home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / ab20_archive / utilities / file / strings-1.0.lha / strings.doc < prev   
Text File  |  1992-03-02  |  2KB  |  74 lines

  1.  
  2.                         STRINGS
  3.  
  4.                     by Dan Zerkle
  5.  
  6.  
  7. VERSION:
  8.  
  9.   strings 1.0 February 1992
  10.  
  11.  
  12. USAGE:
  13.  
  14.   strings [-n] [-<minimum>] [<filename>]
  15.  
  16.  
  17.   This program sifts through a file to find all strings of
  18.   a given length (default six) of printable ASCII characters.
  19.   It is useful for finding version numbers and such.  Output
  20.   is sent to standard output.
  21.  
  22.  
  23. OPTIONS:
  24.  
  25.   -n
  26.  
  27.       No newlines will be printed on the output.
  28.  
  29.   -<minimum>
  30.  
  31.     Minimum number of characters in the string before it's
  32.     printed.
  33.  
  34.   <filename>
  35.  
  36.     If included, input will be taken from the given file.
  37.     Otherwise, the input is taken from standard input.
  38.  
  39.  
  40. EXAMPLES:
  41.  
  42.   strings -n
  43.  
  44.     Input is taken from the standard input (probably keyboard).
  45.     Output contains no newlines.
  46.  
  47.   strings -13 foo
  48.  
  49.     Input taken from file "foo".  Output consist of all strings
  50.     of length 13 or more from that file.
  51.  
  52.  
  53. NO COPYRIGHT:
  54.  
  55. This program is released into the Public Domain.  You may execute,
  56. copy, modify, sell, include, or otherwise use it for any purpose
  57. whatsoever.
  58.  
  59.  
  60. HISTORY:
  61.  
  62. I was sitting around and wanted to get the version string out of
  63. an XPR.  I couldn't find a Unix-like "strings" program on my
  64. Amiga anywhere.  So I wrote it.
  65.  
  66. Seeing that it might be useful for the general community, I am
  67. releasing the source and executable.  You are welcome to use it,
  68. include it in a commercial package (Compiler?  Uucp?  Operating
  69. system?), or whatever you want.  Have fun.
  70.  
  71. My only request is that if you use it, send me electronic mail
  72. at zerkle@cs.ucdavis.edu, and tell me you're using it.  I might
  73. even take suggestions.
  74.